Fastest way to set up a JSON server on my local machine [closed]

Posted by Mohsen on Programmers See other posts from Programmers or by Mohsen
Published on 2012-06-20T22:27:20Z Indexed on 2012/06/21 9:23 UTC
Read the original article Hit count: 271

Filed under:
|
|

I am a front-end developer. For many experiements I do I need to have a server that talks JSON with my client side app. Normally that server is a simple server that response to my POSTs and GETs. For example I need to setup a server that saves, modifies and read data from a "library" database like this:

  • POST /books create a book
  • GET /book/:id gets a book

and so on...

What is the fastest to set up and easiest technology stack for database and server in this case? I am open to use Ruby, Nodejs and anything that do the job fast and easy.

Is there any framework (on any language) that do stuff like this for me?

© Programmers or respective owner

Related posts about server

Related posts about JSON